home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / include / machCalls.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-30  |  959 b   |  29 lines

  1. /*
  2.  * machCalls.h --
  3.  *
  4.  *    Declarations that should properly be in Mach header files, but
  5.  *    aren't or can't be used.  (Example: mach.h and mach_traps.h can't
  6.  *    be included together, at least as of 2-Oct-91, because cpp gags.)
  7.  *
  8.  * Copyright 1992 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that this copyright
  12.  * notice appears in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  *
  17.  * $Header: /user5/kupfer/spriteserver/include/RCS/machCalls.h,v 1.1 92/04/29 22:35:00 kupfer Exp $ SPRITE (Berkeley)
  18.  */
  19.  
  20. #ifndef _MACHCALLS
  21. #define _MACHCALLS
  22.  
  23. #include <cfuncproto.h>
  24. #include <mach.h>
  25.  
  26. extern mach_port_t mach_host_self _ARGS_((void));
  27.  
  28. #endif /* _MACHCALLS */
  29.